Skip to content
This repository has been archived by the owner on Jan 21, 2025. It is now read-only.

Update all non-major dependencies #186

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/argoproj/gitops-engine v0.7.1-0.20240715141605-18ba62e1f1fb -> v0.7.3 age adoption passing confidence require patch
github.com/bradleyfalzon/ghinstallation/v2 v2.10.0 -> v2.13.0 age adoption passing confidence require minor
github.com/cenkalti/backoff/v4 v4.2.1 -> v4.3.0 age adoption passing confidence require minor
github.com/cenkalti/backoff/v5 v5.0.0 -> v5.0.1 age adoption passing confidence require patch
github.com/go-test/deep v1.1.0 -> v1.1.1 age adoption passing confidence require patch
github.com/mikefarah/yq/v4 v4.43.1 -> v4.45.1 age adoption passing confidence require minor
github.com/prometheus/client_golang v1.19.0 -> v1.20.5 age adoption passing confidence require minor
github.com/spf13/cobra v1.8.0 -> v1.8.1 age adoption passing confidence require patch
github.com/stretchr/testify v1.9.0 -> v1.10.0 age adoption passing confidence require minor
go (source) 1.23.4 -> 1.23.5 age adoption passing confidence toolchain patch
golang 1.23.4 -> 1.23.5 age adoption passing confidence stage patch
golang.org/x/oauth2 v0.19.0 -> v0.25.0 age adoption passing confidence require minor
golang.org/x/tools v0.28.0 -> v0.29.0 age adoption passing confidence require minor
google.golang.org/grpc v1.63.2 -> v1.69.4 age adoption passing confidence require minor
k8s.io/api v0.26.11 -> v0.32.1 age adoption passing confidence require minor
k8s.io/apimachinery v0.26.11 -> v0.32.1 age adoption passing confidence require minor
sigs.k8s.io/kustomize/api v0.12.1 -> v0.19.0 age adoption passing confidence replace minor
sigs.k8s.io/kustomize/kyaml v0.13.9 -> v0.19.0 age adoption passing confidence replace minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

argoproj/gitops-engine (github.com/argoproj/gitops-engine)

v0.7.3

Compare Source

v0.7.2

Compare Source

bradleyfalzon/ghinstallation (github.com/bradleyfalzon/ghinstallation/v2)

v2.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: bradleyfalzon/ghinstallation@v2.12.0...v2.13.0

v2.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: bradleyfalzon/ghinstallation@v2.11.0...v2.12.0

v2.11.0

Compare Source

What's Changed

NOTE: Now requires Go >= 1.16 to build.

New Contributors

Full Changelog: bradleyfalzon/ghinstallation@v2.10.0...v2.11.0

cenkalti/backoff (github.com/cenkalti/backoff/v4)

v4.3.0

Compare Source

go-test/deep (github.com/go-test/deep)

v1.1.1

Compare Source

  • Added NilPointersAreZero option: causes a nil pointer to be equal to a zero value (PR #​61) (@​seveas)
  • Updated test matrix to go1.22, go1.21, and go1.20
mikefarah/yq (github.com/mikefarah/yq/v4)

v4.45.1: - Create parent directories when --split-exp is used!

Compare Source

  • Create parent directories when --split-exp is used, Thanks @​rudo-thomas
    • Bumped dependencies

v4.44.6

Compare Source

v4.44.5

Compare Source

  • Format comments with a gray foreground (Thanks @​gabe565)
  • Fixed handling of nulls with sort_by expressions #​2164
  • Force no color output when NO_COLOR env presents (Thanks @​narqo)
  • Fixed array subtraction update bug #​2159
  • Fixed index out of range error
  • Can traverse straight from parent operator (parent.blah)
  • Bumped dependencies

Note: 4.44.4 was skipped as it had a release pipeline failure

v4.44.4

Compare Source

v4.44.3

Compare Source

  • Fixed upper-case file extension detection, Thanks @​ryenus (#​2121)
    • Log printing follow no-colors flag #​2082
    • Skip and warn when interpolating strings and theres a unclosed bracket #​2083
    • Fixed CSV content starting with # issue #​2076
    • Bumped dependencies

v4.44.2

Compare Source

  • Handle numbers with underscores #​2039
    • Unique now works on maps and arrays #​2068
    • Added support for short hand splat with env[] expression #​2071, as well as many other operators (split,select,eval,pick..)
    • Bumped dependencies

v4.44.1: - min/max/pivot!

Compare Source

prometheus/client_golang (github.com/prometheus/client_golang)

v1.20.5: / 2024-10-15

Compare Source

We decided to revert the testutil change that made our util functions less error-prone, but created a lot of work for our downstream users. Apologies for the pain! This revert should not cause any major breaking change, even if you already did the work--unless you depend on the exact error message.

Going forward, we plan to reinforce our release testing strategy [1],[2] and deliver an enhanced testutil package/module with more flexible and safer APIs.

Thanks to @​dashpole @​dgrisonnet @​kakkoyun @​ArthurSens @​vesari @​logicalhan @​krajorama @​bwplotka who helped in this patch release! 🤗

Changelog

[BUGFIX] testutil: Reverted #​1424; functions using compareMetricFamilies are (again) only failing if filtered metricNames are in the expected input. #​1645

v1.20.4

Compare Source

  • [BUGFIX] histograms: Fix a possible data race when appending exemplars vs metrics gather. #​1623

v1.20.3

Compare Source

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #​1608

v1.20.2

Compare Source

  • [BUGFIX] promhttp: Unset Content-Encoding header when data is uncompressed. #​1596

v1.20.1

Compare Source

  • [BUGFIX] process-collector: Fixed unregistered descriptor error when using process collector with PedanticRegistry on Linux machines. #​1587

v1.20.0

Compare Source

Thanks everyone for contributions!

⚠️ In this release we remove one (broken anyway, given Go runtime changes) metric and add three new (representing GOGC, GOMEMLIMIT and GOMAXPROCS flags) to the default collectors.NewGoCollector() collector. Given its popular usage, expect your binary to expose two additional metric.

Changes

  • [CHANGE] ⚠️ go-collector: Remove go_memstat_lookups_total metric which was always 0; Go runtime stopped sharing pointer lookup statistics. #​1577
  • [FEATURE] ⚠️ go-collector: Add 3 default metrics: go_gc_gogc_percent, go_gc_gomemlimit_bytes and go_sched_gomaxprocs_threads as those are recommended by the Go team. #​1559
  • [FEATURE] go-collector: Add more information to all metrics' HELP e.g. the exact runtime/metrics sourcing each metric (if relevant). #​1568 #​1578
  • [FEATURE] testutil: Add CollectAndFormat method. #​1503
  • [FEATURE] histograms: Add support for exemplars in native histograms. #​1471
  • [FEATURE] promhttp: Add experimental support for zstd on scrape, controlled by the request Accept-Encoding header. #​1496
  • [FEATURE] api/v1: Add WithLimit parameter to all API methods that supports it. #​1544
  • [FEATURE] prometheus: Add support for created timestamps in constant histograms and constant summaries. #​1537
  • [FEATURE] process-collectors: Add network usage metrics: process_network_receive_bytes_total and process_network_transmit_bytes_total. #​1555
  • [FEATURE] promlint: Add duplicated metric lint rule. #​1472
  • [BUGFIX] promlint: Relax metric type in name linter rule. #​1455
  • [BUGFIX] promhttp: Make sure server
    instrumentation wrapping supports new and future extra responseWriter methods. #​1480
  • [BUGFIX] testutil: Functions using compareMetricFamilies are now failing if filtered metricNames are not in the input. #​1424
All commits

New Contributors

Full Changelog: prometheus/client_golang@v1.19.1...v1.20.0

v1.19.1

Compare Source

What's Changed

  • Security patches for golang.org/x/sys and google.golang.org/protobuf

New Contributors

Full Changelog: prometheus/client_golang@v1.19.0...v1.19.1

spf13/cobra (github.com/spf13/cobra)

v1.8.1

Compare Source

✨ Features

🐛 Bug fixes

🔧 Maintenance

🧪 Testing & CI/CD

✏️ Documentation


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update module github.com/bradleyfalzon/ghinstallation/v2 to v2.11.0 fix(deps): update all non-major dependencies Jun 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3a2f03a to 307d2f1 Compare June 4, 2024 22:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 967a8e0 to 96e068f Compare June 16, 2024 04:12
Copy link
Contributor Author

renovate bot commented Jun 16, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 6 additional dependencies were updated

Details:

Package Change
github.com/elliotchance/orderedmap v1.5.1 -> v1.6.0
github.com/fatih/color v1.16.0 -> v1.17.0
github.com/goccy/go-json v0.10.2 -> v0.10.3
golang.org/x/net v0.24.0 -> v0.26.0
golang.org/x/sys v0.19.0 -> v0.21.0
golang.org/x/text v0.15.0 -> v0.16.0

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 234667e to a723a90 Compare June 19, 2024 14:46
Copy link
Contributor Author

renovate bot commented Jun 19, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: downloading github.com/alexliesenfeld/health v0.8.0
go: downloading github.com/hashicorp/golang-lru/v2 v2.0.7
go: downloading github.com/hexops/gotextdiff v1.0.3
go: downloading github.com/mikefarah/yq/v4 v4.45.1
go: downloading github.com/prometheus/client_golang v1.20.5
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/spf13/cobra v1.8.1
go: downloading github.com/argoproj/argo-cd/v2 v2.13.3
go: downloading github.com/argoproj/gitops-engine v0.7.3
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading k8s.io/apimachinery v0.32.1
go: downloading github.com/golang/mock v1.6.0
go: downloading github.com/stretchr/testify v1.10.0
go: downloading golang.org/x/tools v0.29.0
go: downloading github.com/go-test/deep v1.1.1
go: downloading github.com/bradleyfalzon/ghinstallation/v2 v2.13.0
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/google/go-github/v62 v62.0.0
go: downloading github.com/shurcooL/githubv4 v0.0.0-20240727222349-48295856cce7
go: downloading golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
go: downloading golang.org/x/oauth2 v0.25.0
go: downloading github.com/migueleliasweb/go-github-mock v1.1.0
go: downloading github.com/a8m/envsubst v1.4.2
go: downloading github.com/alecthomas/participle/v2 v2.1.1
go: downloading github.com/dimchansky/utfbom v1.1.1
go: downloading github.com/elliotchance/orderedmap v1.7.1
go: downloading github.com/fatih/color v1.18.0
go: downloading github.com/goccy/go-json v0.10.4
go: downloading github.com/goccy/go-yaml v1.13.3
go: downloading github.com/jinzhu/copier v0.4.0
go: downloading github.com/magiconair/properties v1.8.9
go: downloading github.com/pelletier/go-toml/v2 v2.2.3
go: downloading github.com/yuin/gopher-lua v1.1.1
go: downloading golang.org/x/net v0.34.0
go: downloading golang.org/x/text v0.21.0
go: downloading gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/klauspost/compress v1.17.9
go: downloading github.com/prometheus/client_model v0.6.1
go: downloading github.com/prometheus/common v0.55.0
go: downloading golang.org/x/sys v0.29.0
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/Masterminds/sprig/v3 v3.3.0
go: downloading github.com/gosimple/slug v1.14.0
go: downloading github.com/valyala/fasttemplate v1.2.2
go: downloading k8s.io/api v0.32.1
go: downloading k8s.io/client-go v0.31.2
go: downloading k8s.io/klog/v2 v2.130.1
go: downloading k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
go: downloading sigs.k8s.io/controller-runtime v0.19.0
go: downloading sigs.k8s.io/yaml v1.4.0
go: downloading go.uber.org/automaxprocs v1.5.3
go: downloading github.com/evanphx/json-patch v5.9.0+incompatible
go: downloading golang.org/x/sync v0.10.0
go: downloading k8s.io/kubectl v0.31.2
go: downloading github.com/coreos/go-oidc/v3 v3.11.0
go: downloading github.com/golang-jwt/jwt/v4 v4.5.1
go: downloading github.com/golang/protobuf v1.5.4
go: downloading github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
go: downloading github.com/hashicorp/go-retryablehttp v0.7.7
go: downloading google.golang.org/grpc v1.69.4
go: downloading github.com/argoproj/pkg v0.13.7-0.20230626144333-d56162821bd1
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading github.com/grpc-ecosystem/grpc-gateway v1.16.0
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53
go: downloading google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/google/go-cmp v0.6.0
go: downloading github.com/robfig/cron/v3 v3.0.1
go: downloading k8s.io/apiextensions-apiserver v0.31.2
go: downloading k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7
go: downloading google.golang.org/protobuf v1.35.1
go: downloading github.com/r3labs/diff v1.1.0
go: downloading github.com/go-logr/logr v1.4.2
go: downloading github.com/itchyny/gojq v0.12.16
go: downloading k8s.io/cli-runtime v0.31.2
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading github.com/google/gofuzz v1.2.0
go: downloading github.com/google/go-github/v68 v68.0.0
go: downloading github.com/google/go-querystring v1.1.0
go: downloading github.com/shurcooL/graphql v0.0.0-20230722043721-ed46e5a46466
go: downloading github.com/google/go-github/v64 v64.0.0
go: downloading github.com/gorilla/mux v1.8.0
go: downloading golang.org/x/time v0.7.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/procfs v0.15.1
go: downloading github.com/mattn/go-colorable v0.1.13
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading dario.cat/mergo v1.0.1
go: downloading github.com/Masterminds/goutils v1.1.1
go: downloading github.com/Masterminds/semver/v3 v3.3.0
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/huandu/xstrings v1.5.0
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading github.com/shopspring/decimal v1.4.0
go: downloading github.com/spf13/cast v1.7.0
go: downloading golang.org/x/crypto v0.32.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/redis/go-redis/v9 v9.6.1
go: downloading github.com/gosimple/unidecode v1.0.1
go: downloading github.com/valyala/bytebufferpool v1.0.0
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading sigs.k8s.io/structured-merge-diff/v4 v4.4.2
go: downloading github.com/evanphx/json-patch/v5 v5.9.0
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/imdario/mergo v0.3.16
go: downloading golang.org/x/term v0.28.0
go: downloading oras.land/oras-go/v2 v2.5.0
go: downloading github.com/bombsimon/logrusr/v2 v2.0.1
go: downloading layeh.com/gopher-json v0.0.0-20190114024228-97fed8db8427
go: downloading k8s.io/kube-aggregator v0.31.2
go: downloading github.com/google/gnostic-models v0.6.9
go: downloading github.com/go-git/go-git/v5 v5.12.0
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0
go: downloading github.com/go-jose/go-jose/v4 v4.0.2
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading github.com/bmatcuk/doublestar/v4 v4.6.1
go: downloading github.com/patrickmn/go-cache v2.1.0+incompatible
go: downloading github.com/emicklei/go-restful/v3 v3.12.0
go: downloading github.com/go-openapi/jsonreference v0.21.0
go: downloading github.com/go-openapi/swag v0.23.0
go: downloading k8s.io/kubernetes v1.31.0
go: downloading github.com/itchyny/timefmt-go v0.1.6
go: downloading gopkg.in/evanphx/json-patch.v4 v4.12.0
go: downloading github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
go: downloading github.com/moby/term v0.5.0
go: downloading sigs.k8s.io/kustomize/api v0.19.0
go: downloading sigs.k8s.io/kustomize/kyaml v0.19.0
go: downloading github.com/jonboulle/clockwork v0.4.0
go: downloading k8s.io/component-base v0.31.2
go: downloading k8s.io/component-helpers v0.31.2
go: downloading sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
go: downloading github.com/dlclark/regexp2 v1.11.4
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/google/btree v1.1.3
go: downloading github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1
go: downloading github.com/go-redis/cache/v9 v9.0.0
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/opencontainers/image-spec v1.1.0
go: downloading go.opentelemetry.io/otel v1.31.0
go: downloading go.opentelemetry.io/otel/metric v1.31.0
go: downloading go.opentelemetry.io/otel/trace v1.31.0
go: downloading github.com/gorilla/websocket v1.5.3
go: downloading github.com/ProtonMail/go-crypto v1.0.0
go: downloading github.com/go-git/go-billy/v5 v5.5.0
go: downloading github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3
go: downloading github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
go: downloading github.com/kevinburke/ssh_config v1.2.0
go: downloading github.com/skeema/knownhosts v1.2.2
go: downloading github.com/xanzy/ssh-agent v0.3.3
go: downloading github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
go: downloading cloud.google.com/go/compute/metadata v0.5.2
go: downloading cloud.google.com/go/compute v1.25.1
go: downloading github.com/go-openapi/jsonpointer v0.21.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
go: downloading github.com/peterbourgon/diskv v2.0.1+incompatible
go: downloading github.com/chai2010/gettext-go v1.0.2
go: downloading github.com/MakeNowJust/heredoc v1.0.0
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f
go: downloading github.com/fatih/camelcase v1.0.0
go: downloading github.com/fxamacker/cbor/v2 v2.7.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/vmihailenco/go-tinylfu v0.2.2
go: downloading github.com/vmihailenco/msgpack/v5 v5.4.1
go: downloading github.com/moby/spdystream v0.5.0
go: downloading github.com/cyphar/filepath-securejoin v0.3.2
go: downloading github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376
go: downloading github.com/pjbgf/sha1cd v0.3.0
go: downloading github.com/emirpasic/gods v1.18.1
go: downloading github.com/Microsoft/go-winio v0.6.1
go: downloading github.com/josharian/intern v1.0.0
go: downloading k8s.io/apiserver v0.31.2
go: downloading github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/go-errors/errors v1.5.1
go: downloading github.com/x448/float16 v0.8.4
go: downloading github.com/vmihailenco/tagparser/v2 v2.0.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
go: downloading github.com/cloudflare/circl v1.3.7
go: downloading gopkg.in/warnings.v0 v0.1.2
go: downloading github.com/distribution/reference v0.5.0
go: downloading github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00
go: downloading github.com/xlab/treeprint v1.2.0
go: downloading github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
go: downloading golang.org/x/mod v0.22.0
go: github.com/wayfair-incubator/telefonistka/internal/pkg/argocd imports
	github.com/argoproj/argo-cd/v2/controller imports
	k8s.io/client-go/informers imports
	k8s.io/api/coordination/v1alpha1: cannot find module providing package k8s.io/api/coordination/v1alpha1

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3fbe441 to 8b0b9b6 Compare June 23, 2024 19:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5507835 to fc8308d Compare July 3, 2024 00:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 378820e to a5991a2 Compare July 22, 2024 15:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from de59ac5 to 25d82cb Compare August 7, 2024 00:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 25bc492 to 2a03d3e Compare August 20, 2024 13:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 83e00b9 to ca8f145 Compare November 21, 2024 08:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 12c7830 to ff58126 Compare December 7, 2024 07:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from de42e35 to 2a3f9c3 Compare December 12, 2024 21:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ca24397 to ebe93bc Compare December 22, 2024 22:30
@renovate renovate bot changed the title fix(deps): update all non-major dependencies Update all non-major dependencies Dec 22, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 29bf6f8 to 8f0c3a6 Compare December 23, 2024 13:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from df533c6 to bdb74b5 Compare January 7, 2025 01:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 9256c34 to 22e9d0e Compare January 17, 2025 01:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 22e9d0e to a988364 Compare January 17, 2025 10:05
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants